From a857ed136a598e746a3d5ecd6cddc577f5b4c1a6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 10 Jun 1993 17:42:39 +0000 Subject: [PATCH] (bibtex-mode-map): Use tex-insert-quote, not TeX-... --- lisp/textmodes/bibtex.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index b6c13fb8605..4bdf73c0670 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -138,7 +138,7 @@ ;;; user visible variables added: ;;; bibtex-maintain-sorted-entries ;;; new local keybindings: -;;; " TeX-insert-quote +;;; " tex-insert-quote ;;; C-c$ ispell-bibtex-entry ;;; M-C-a beginning-of-bibtex-entry ;;; M-C-e end-of-bibtex-entry @@ -233,8 +233,8 @@ ;;; these guys typically don't have autoloads...[alarson:19920131.1548CST] ;;; Check for fboundp first so that if user autoloads them from non standard ;;; places, the users bindings will take precedence. -(if (not (fboundp 'TeX-insert-quote)) - (autoload 'TeX-insert-quote "tex-mode")) +(if (not (fboundp 'tex-insert-quote)) + (autoload 'tex-insert-quote "tex-mode")) (if (not (fboundp 'sort-subr)) (autoload 'sort-subr "sort")) @@ -308,7 +308,7 @@ string and the cdr the value to be inserted.") (define-key km "\C-c\C-d" 'bibtex-empty-field) ;; [alarson:19920131.1543CST] - (define-key km "\"" 'TeX-insert-quote) + (define-key km "\"" 'tex-insert-quote) (define-key km "\C-c$" 'ispell-bibtex-entry) (define-key km "\M-\C-a" 'beginning-of-bibtex-entry) (define-key km "\M-\C-e" 'end-of-bibtex-entry) -- 2.30.2